Item Property

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Returns a collection of all of the values in the dictionary associated with key. If the key is not present in the dictionary, an ICollection with no values is returned. The returned ICollection is read-only.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public virtual ICollection<TValue> this[
	TKey key
]{ get;}
Visual Basic (Declaration)
Public Overridable ReadOnly Default Property Item ( _
	key As TKey _
) As ICollection(Of TValue)
Visual C++
public:
virtual property ICollection<TValue>^ default[TKey key] {
	ICollection<TValue>^ get (TKey key);
}

Parameters

key
TKey
The key to get the values associated with.

Field Value

An ICollection<TValue> with all the values associated with key.

See Also